local TweenService = game:GetService("TweenService") local tweenInfo = TweenInfo.new( 1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut, -1, true, 0 ) local naeeym2 = Instance.new("BillboardGui",script) naeeym2.Size = UDim2.new(15, 0, 2, 0) naeeym2.StudsOffset = Vector3.new(0,2,0) naeeym2.Adornee = owner.Character:FindFirstChild("Head") naeeym2.Name = "TalkingBillBoard" local tecks2 = Instance.new("TextBox",naeeym2) tecks2.Size = UDim2.new(1, 0, 1, 0) tecks2.Position = UDim2.new(0, 0, 0, 0) tecks2.Rotation = 7.5 tecks2.Text = "" tecks2.TextScaled = true tecks2.BackgroundTransparency = 1 tecks2.BorderSizePixel = 0 tecks2.TextColor3 = Color3.new(255, 255, 255) tecks2.TextStrokeTransparency = 0 tecks2.TextSize = 50 tecks2.Font = "Arcade" local tween = TweenService:Create(tecks2, tweenInfo, {Rotation = -7.5}) tween:Play() while true do tecks2.Text = "FPS: "..math.floor(((2/wait() + 0.5)+(1/game:GetService("RunService").Heartbeat:Wait()))/2) wait(0.1) end